Micron Document
🌎 rns.kin.earth git 🌍

Node / dev / reticulum / commits / 56848cd

Commit 56848cdb63a862d3d532ec5efebcbbe1f8c784c3


Parents : 41ad089
Author : Mark Qvist <mark@unsigned.io>
Date : 2025-10-31T21:25:28+01:00

Ensure default destination app data can be generated and sent even on first system-internal discovery announce

Changes

1 files changed, 4 insertions(+), 1 deletions(-)


Diff

diff --git a/RNS/Transport.py b/RNS/Transport.py
index 93768aa7..8e7f805b 100755
--- a/RNS/Transport.py
+++ b/RNS/Transport.py
@@ -2133,7 +2133,10 @@ class Transport:
if Transport.owner.is_connected_to_shared_instance:
if destination.type == RNS.Destination.SINGLE:
- destination.announce(path_response=True)
+ def job():
+ time.sleep(0.25)
+ destination.announce(path_response=True)
+ threading.Thread(target=job, daemon=True).start()
@staticmethod
def deregister_destination(destination):

Served by rngit 1.5.2 - Generated in 0.07s